home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / sozosun.zoo / src / tools / Makefile < prev    next >
Encoding:
Makefile  |  1991-02-09  |  243 b   |  19 lines

  1. #
  2. # Makefile for various utilities
  3. #
  4. CFLAGS = -O -DBSD $(DEBUG)
  5.  
  6. PROGS = nm size ar cc
  7.  
  8. all: $(PROGS)
  9.     mv cc ../../bin/scc.ttp
  10.     mv size ../../bin/size.ttp
  11.     mv nm ../../bin/nm.ttp
  12.     mv ar ../../bin/ar.ttp
  13.  
  14. clean:
  15.     rm *.o
  16.  
  17. clobber:
  18.     rm *.o *.ttp
  19.